Skip to main content

Get Admin Users

Get Admin Users

Path Parameters
    workspaceName string required

Response

idstring

Unique ID of Admin User.

mfaEnabledstring

A boolean value indicating whether the mfa is enabled (true) or not (false).

createdTimestampnumber

Timestamp indicating when the user is created.

usernamestring

The username of the Admin User.

enabledboolean

A boolean value indicating whether the user is enabled (true) or disabled (false).

emailVerifiedboolean

A boolean value indicating whether the email is verified (true) or not (false).

emailstring

Email Id of the new user

skipSendingEmailboolean

A boolean value indicating whether the user will get email (false) or not (false).

accessobject

Access information of the user

accountCreatorboolean

A boolean value indicating whether the user is account creator (true) or not (false).

Sample Response
[
{
"id": "67e7607a-4fe3-4420-ac24-9afdaaab9a0b",
"mfaEnabled": false,
"createdTimestamp": 1704183353749,
"username": "grootadmin1",
"enabled": true,
"emailVerified": false,
"email": "grootadmin1@grootan.com",
"skipSendingEmail": false,
"access": {
"manageGroupMembership": true,
"winlogonUser": false,
"view": true,
"mapRoles": true,
"impersonate": true,
"winlogonAdmin": false,
"manage": true
},
"accountCreator": false
},
{
"id": "4ffd9b00-ec58-4470-a3ae-e3c38d6d2b8d",
"mfaEnabled": true,
"createdTimestamp": 1702920404904,
"username": "grootadmin2",
"enabled": true,
"emailVerified": true,
"email": "grootadmin2@grootan.com",
"skipSendingEmail": false,
"access": {
"manageGroupMembership": true,
"winlogonUser": false,
"view": true,
"mapRoles": true,
"impersonate": true,
"winlogonAdmin": false,
"manage": true
},
"accountCreator": true
}
]
HTTP STATUS CODE SUMMARY
200 - OKSuccessfully done.
201 - OKSuccessfully created.
400 - Bad RequestThe request was unacceptable, often due to missing a required parameter.
401 - UnauthorizedUnauthorized access try with correct access.
402 - Request FailedThe parameters were valid but the request failed.
403 - ForbiddenThe Application doesn't have permissions to perform the request.
404 - Not FoundThe requested resource doesn't exist
500 - Server ErrorsSomething went wrong on ezto auth's end. (These are rare.)
503 - Server ErrorsService temporarily unavailable

Loading...